home *** CD-ROM | disk | FTP | other *** search
/ Nebula 2 / Nebula Two.iso / WebObjects / WebObjectsDoc_HTML / Reuse / ReusableComponentsEx / RadioMatrixEx.wo / RadioMatrixEx.wod < prev    next >
Encoding:
Text File  |  1996-03-11  |  545 b   |  30 lines

  1. ////////////////////////
  2. //  RadioMatrixEx
  3. //  by Charles Lloyd
  4. ////////////////////////
  5.  
  6.  
  7. RadioComposite: RadioMatrix {
  8.     matrixName="AlphabetMatrix";
  9.     valueStringsList=aCompositeStringList;
  10.     selectedItem=aRadioChoiceString;
  11.     borderSize= 3;
  12.     isVertical = YES;
  13. };
  14.  
  15. ChoiceForm: WOForm {
  16.     action=displayChoice;
  17. };
  18.  
  19. ChoiceString: WOString {
  20.     value=aRadioChoiceString;
  21. };
  22.  
  23. ComponentDescription: ComponentDescription {
  24.     componentName = "RadioMatrix";
  25. };
  26.  
  27. ShowSourceControls: ShowSource {
  28.     componentName = "RadioMatrix";
  29. }; 
  30.